9f24659cd7dbe973d3f5a5e35e86c12fa1449874,platform/extensions/src/com/intellij/util/pico/DefaultPicoContainer.java,DefaultPicoContainer,getLocalInstance,#ComponentAdapter#,242

Before Change


    }
    if (firstLevelException != null) {
      if (parent != null) {
        instance = parent.getComponentInstance(componentAdapter.getComponentKey());
        if (instance != null) {
          return instance;
        }
      }

      throw firstLevelException;
    }

    return instance;
  }

After Change


    }

    if (parent != null) {
      Object instance = parent.getComponentInstance(componentAdapter.getComponentKey());
      if (instance != null) {
        return instance;
      }